home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000160_heiby_u@falkor.chi.il.us_Sun Jun 15 12:36:56 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  6KB  |  140 lines

  1. Article: 14389 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!newsfeed.nyu.edu!router1.news.adelphia.net!logbridge.uoregon.edu!newshub.sdsu.edu!elnk-pas-nf2!elnk-pas-nf1!newsfeed.earthlink.net!small1.nntp.aus1.giganews.com!border3.nntp.aus1.giganews.com!nntp.giganews.com!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc54.POSTED!not-for-mail
  3. From: Ron Heiby <heiby_u@falkor.chi.il.us>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Backspace Insists on sending ^H
  6. Message-ID: <779oev84tluh03lpoag0imeueh45algboj@4ax.com>
  7. X-Newsreader: Forte Agent 1.91/32.564
  8. MIME-Version: 1.0
  9. Content-Type: text/plain; charset=us-ascii
  10. Content-Transfer-Encoding: 7bit
  11. Lines: 120
  12. NNTP-Posting-Host: 12.248.231.128
  13. X-Complaints-To: abuse@attbi.com
  14. X-Trace: rwcrnsc54 1055665144 12.248.231.128 (Sun, 15 Jun 2003 08:19:04 GMT)
  15. NNTP-Posting-Date: Sun, 15 Jun 2003 08:19:04 GMT
  16. Organization: AT&T Broadband
  17. Date: Sun, 15 Jun 2003 08:19:04 GMT
  18. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14389
  19.  
  20. Based on the amount of documentation of Backspace / Delete / Keyboard issues, I am sure
  21. that I am not the only one confused by this area of endeavor. But, I have read an awful
  22. lot of documentation that sounds like it should be helping me figure this out, but I'm
  23. still not successfully sending the character I want to send.
  24.  
  25. I've constructed a dialer entry to connect me with a system in my lab. I have told it
  26. to use vt320 emulation, and sure enough, my Linux session thinks I'm on a vt320. In the
  27. "Keyboard" setup area, I have told Kermit that "Backspace key sends Delete (Rubout)".
  28. In the script generated by the dialer (below), I see a line that says, "set dialer
  29. backspace \127", which looks like it probably is intended to cause Kermit to send a DEL
  30. when I press my PC's [<- Backspace] key. However, the character that gets sent is a BS
  31. (^H). If I enter the Kermit command "show key one" and press that key, I am told, "Key
  32. code \264 Backspace (default) => Character: \8". This sure looks like it wants to send
  33. a BS when I press that key, despite the "set dialer backspace \127" command.
  34.  
  35. At this point, it looks like the dialer configuration for the backspace key does
  36. nothing. But, I find that hard to believe, as *someone* would have noticed before now.
  37. It does look like I am able to add an explicit "set key" to get the backspace key to
  38. emit a DEL, which seems an OK workaround. But, I can't help feeling that I'm missing
  39. something.
  40.  
  41. ========================
  42.  
  43. ; Kermit 95 Dialer Generated Script - Version 1.37
  44. set title 0-Lab
  45. set command color LightGray Black
  46. clear command
  47. if gui {
  48. set gui window resize-mode change-dimensions
  49. set gui window run-mode restore
  50. set gui rgbcolor black 0 0 0
  51. set gui rgbcolor blue 0 0 127
  52. set gui rgbcolor green 0 127 0
  53. set gui rgbcolor cyan 0 127 127
  54. set gui rgbcolor red 127 0 0
  55. set gui rgbcolor magenta 127 0 127
  56. set gui rgbcolor brown 127 127 0
  57. set gui rgbcolor lightgray 192 192 192
  58. set gui rgbcolor darkgray 127 127 127
  59. set gui rgbcolor lightblue 0 0 255
  60. set gui rgbcolor lightgreen 0 255 0
  61. set gui rgbcolor lightcyan 0 255 255
  62. set gui rgbcolor lightred 255 0 0
  63. set gui rgbcolor lightmagenta 255 0 255
  64. set gui rgbcolor yellow 255 255 0
  65. set gui rgbcolor white 255 255 255
  66. }
  67. cd \v(home)
  68. set terminal type vt320
  69. set term bytesize 8
  70. set term echo off
  71. set term wrap on
  72. set term apc off
  73. set term autodown on
  74. set term status on
  75. set term width 110
  76. set term height 50
  77. set term cursor full
  78. set term color term Yellow Black
  79. set term color status LightGray Cyan
  80. set term color help LightGray Cyan
  81. set term color selection Black Yellow
  82. set term color underline LightGray Red
  83. set term scrollback 8096
  84. set term remote-char utf8
  85. set exit on-disconnect on
  86. set printer /WINDOWS-QUEUE:
  87. set printer /TIMEOUT:0
  88. set printer /CHARACTER-SET:cp437
  89. set file download-directory {}
  90. set file type binary
  91. set file collision backup
  92. set file incomplete auto
  93. set streaming auto
  94. set clear-channel off
  95. set file names literal
  96. set receive pathnames off
  97. set send pathnames off
  98. set file char cp437
  99. set protocol kermit
  100. do fast
  101. set xfer char latin1
  102. set mouse activate on
  103. set key \269  \13
  104. set term newline off
  105. set dialer backspace \127
  106. ssh add local-port-forward 5924 localhost 5909
  107. ssh add local-port-forward 3306 localhost 3306
  108. ssh add local-port-forward 5923 [host1.domain].com 5900
  109. ssh add local-port-forward 5922 [host2.domain].com 5900
  110. ssh add local-port-forward 5921 [host3.domain].com 5900
  111. ssh add local-port-forward 5920 [host4.domain].com 5909
  112. ssh add local-port-forward 5919 [host5.domain].com 5909
  113. set command quoting off
  114. set login userid heiby
  115. set command quoting on
  116. set command quoting off
  117. set login password {}
  118. set command quoting on
  119. set login prompt {}
  120. set network directory 
  121. set network type ssh
  122. if fail end 1 SSH Failed
  123. set ssh version automatic
  124. set ssh compression on
  125. set ssh x11-forwarding on
  126. set ssh v1 cipher 3des
  127. set ssh strict-host-key-check ask
  128. set ssh v2 authentication external-keyx gssapi srp-gex-sha1 publickey
  129. keyboard-interactive hostbased 
  130. set ssh v2 ciphers aes128-cbc 3des-cbc blowfish-cbc cast128-cbc arcfour aes192-cbc
  131. aes256-cbc 
  132. set ssh v2 macs hmac-md5 hmac-sha1 hmac-ripemd160 hmac-sha1-96 hmac-md5-96 
  133. set ssh v2 hostkey-algorithms ssh-rsa ssh-dss 
  134. set ssh gssapi delegate-credentials off
  135. set ssh kerberos5 tgt-passing off
  136. set ssh kerberos4 tgt-passing off
  137. set host [host0.domain].com ssh
  138. if success connect
  139.  
  140.